iT邦幫忙

2023 iThome 鐵人賽

DAY 3
0
自我挑戰組

CPE 49題訓練系列 第 3

YKL11.UVA10035 Primary Arithmetic

  • 分享至 

  • xImage
  •  
while True:
	try:
		a,b=map(int,input().split())
		count=0
		carry=0
		if a==b==0:
			break
		while a!=0 or b!=0:
			if a%10+b%10+carry>9:
				count+=1
				carry=1
			a//=10
			b//=10
		if count==0:
			print('No carry operation.')
		elif count==1:
			print('1 carry operation.')
		else:
			print(str(count)+' carry operations.')
	except:
		break

上一篇
YKL25.UVA10041 Vito'sfamily YKL01.UVA10055 Hashmat the brave warrior
下一篇
YKL08.UVA100 The 3n + 1 problem YKL13.UVA10929 You can say 11
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言